home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / misc / emu / msh-156.lha / syslog / syslog.h < prev    next >
C/C++ Source or Header  |  1994-10-24  |  425b  |  21 lines

  1. /*-
  2.  * $Id: syslog.h,v 1.1 1994/10/24 20:38:56 Rhialto Exp $
  3.  *
  4.  * $Log: syslog.h,v $
  5.  * Revision 1.1  1994/10/24  20:38:56  Rhialto
  6.  * Initial revision
  7.  *
  8.  * DEBUGGING LOG DEAMON PUBLIC DEFINITIONS
  9. -*/
  10.  
  11. #define Prototype   extern
  12. #define Local        static
  13.  
  14. #ifdef __STDC__
  15. Prototype void initsyslog(void);
  16. Prototype void uninitsyslog(void);
  17. Prototype void syslog0(char *format, ...);
  18. #endif
  19.  
  20. #define debug(args) syslog0 args
  21.